home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / livecd.squashfs / usr / lib / python2.4 / test / tf_inherit_check.pyo (.txt) < prev    next >
Python Compiled Bytecode  |  2005-10-18  |  550b  |  26 lines

  1. # Source Generated with Decompyle++
  2. # File: in.pyo (Python 2.4)
  3.  
  4. import sys
  5. import os
  6. verbose = sys.argv[1] == 'v'
  7.  
  8. try:
  9.     fd = int(sys.argv[2])
  10.     
  11.     try:
  12.         os.write(fd, 'blat')
  13.     except os.error:
  14.         sys.exit(0)
  15.  
  16.     if verbose:
  17.         sys.stderr.write('fd %d is open in child' % fd)
  18.     
  19.     sys.exit(1)
  20. except StandardError:
  21.     if verbose:
  22.         raise 
  23.     
  24.     sys.exit(1)
  25.  
  26.